Update xen-clone to use "make ARCH=xeno bzImage" commandline rather than
setting ARCH in the environment, which no longer seems to work.
cd ../..
mv linux-${LINUX_VER} xenolinux-${LINUX_VER}
cd xenolinux-${LINUX_VER}
-export ARCH=xeno
-export INSTALL_MOD_PATH=${TOP}/install
-make oldconfig
-make dep
-make bzImage
-make dist || make install
-make modules
-make modules_install
+
+make ARCH=xeno oldconfig
+make ARCH=xeno dep
+make ARCH=xeno bzImage
+make ARCH=xeno dist || make ARCH=xeno install
+make ARCH=xeno modules
+make ARCH=xeno INSTALL_MOD_PATH=${TOP}/install modules_install
cd ..
void machine_restart(char * __unused)
{
extern int opt_noreboot;
-#if CONFIG_SMP
+#ifdef CONFIG_SMP
int cpuid;
#endif